home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / smartcardio / Card.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  537 b   |  23 lines

  1. package javax.smartcardio;
  2.  
  3. public abstract class Card {
  4.    protected Card() {
  5.    }
  6.  
  7.    public abstract ATR getATR();
  8.  
  9.    public abstract String getProtocol();
  10.  
  11.    public abstract CardChannel getBasicChannel();
  12.  
  13.    public abstract CardChannel openLogicalChannel() throws CardException;
  14.  
  15.    public abstract void beginExclusive() throws CardException;
  16.  
  17.    public abstract void endExclusive() throws CardException;
  18.  
  19.    public abstract byte[] transmitControlCommand(int var1, byte[] var2) throws CardException;
  20.  
  21.    public abstract void disconnect(boolean var1) throws CardException;
  22. }
  23.